home *** CD-ROM | disk | FTP | other *** search
- /*
- NVDI/EdDI Offscreen bitmap support library.
- Ported from Pure C to Lattice C 5.52 by Craig Graham.
- [3/11/94]
- */
-
- #ifndef __EDDILIB
- #define __EDDILIB
-
- #include <vdi.h>
-
- void v_opnbm( short *work_in, MFDB *bitmap, short *handle, short *work_out );
- void v_clsbm( short handle );
- short open_bitmap( short x, short y, MFDB *bitmap, short *work_out );
-
- /*
- Inline a simple function for calling the vdi direct rather than mess about
- trying to work out the HiSoft binding.
- */
- void cg_vdi(unsigned long);
- #pragma inline cg_vdi(a0) {"2208303C00734E42";}
-
- #endif
-